home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / daten / graph2d / rexx / getinfos.rexx < prev    next >
OS/2 REXX Batch file  |  1995-04-29  |  771b  |  49 lines

  1. /*
  2. ** This script shows how to get information
  3. ** from the ARexx port of Graph2D
  4. ** Author: Kai Nickel
  5. */
  6.  
  7. options results
  8. ADDRESS 'GRAPH2D.1'
  9.  
  10. INFO TITLE
  11. title = result
  12. SAY "Title......: "title
  13.  
  14. INFO AUTHOR
  15. author = result
  16. SAY "Author.....: "author
  17.  
  18. INFO COPYRIGHT
  19. copyright = result
  20. SAY "Copyright..: "copyright
  21.  
  22. INFO DESCRIPTION
  23. description = result
  24. SAY "Description: "description
  25.  
  26. INFO VERSION
  27. version = result
  28. SAY "Version....: "version
  29.  
  30. INFO BASE
  31. base = result
  32. SAY "Basename.....: "base
  33.  
  34. INFO SCREEN
  35. screen = result
  36. SAY "Screen.......: "screen
  37.  
  38. GETFUNCTION PLAIN
  39. func = result
  40. SAY "PlainFunction: "func
  41.  
  42. GETFUNCTION MS20
  43. func = result
  44. SAY "MSFunction...: "func
  45.  
  46. HELP 't:graph2dhelp'
  47. ADDRESS command "TYPE t:Graph2DHelp"
  48. ADDRESS command "delete >NIL: t:Graph2DHelp"
  49.